home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / ispell-3.1.18src / minrexx.h < prev    next >
C/C++ Source or Header  |  1995-06-29  |  1KB  |  34 lines

  1. /*
  2.  *   Includes for minrexx.c; please refer to that file for
  3.  *   further documentation.
  4.  */
  5. #include <rexx/rxslib.h>
  6. /*
  7.  *   Maximum messages that can be pending, and the return codes
  8.  *   for two bad situations.
  9.  */
  10. #define MAXRXOUTSTANDING (300)
  11. #define RXERRORIMGONE (100)
  12. #define RXERRORNOCMD (30)
  13. /*
  14.  *   This is the association list you build up (statically or
  15.  *   dynamically) that should be terminated with an entry with
  16.  *   NULL for the name . . .
  17.  */
  18. struct rexxCommandList 
  19. {
  20.    char *name ;
  21.    void (*userdata)(struct RexxMsg *, char *) ;
  22. };
  23.  
  24. extern void rexxadd (struct RexxMsg *msg, char *p);
  25. extern void rexxquickadd (struct RexxMsg *msg, char *p);
  26. extern void rexxcheck (struct RexxMsg *msg, char *p);
  27. extern void rexxquickcheck (struct RexxMsg *msg, char *p);
  28. extern void rexxlookup (struct RexxMsg *msg, char *p);
  29. extern void rexxfilecheck (struct RexxMsg *msg, char *p);
  30. extern void rexxextendedfilecheck (struct RexxMsg *msg, char *p);
  31. extern void rexxversion (struct RexxMsg *msg, char *p);
  32. extern void rexxexit (struct RexxMsg *msg, char *p);
  33.  
  34.